home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
F1 Licenseware
/
F1 Licenseware - Volume 1.iso
/
disks
/
050a.dms
/
050a.adf
/
EXAMPLE_PROGRAMS
/
example02.AMOS
/
example02.amosSourceCode
Wrap
AMOS Source Code
|
1992-02-26
|
659b
|
18 lines
'===================
'EXAMPLE PROGRAM TWO
'===================
'
'This little program prints a message on a black screen and then waits
'for any key to be pressed before returning the user back here, to the editor.
'Exactly the same as example 1
'
Rem This is the difference using colons can make to the readability
Rem and size of your listings the single line below is example1.amos
Rem all bunged smartly on one line seperated by colons.
'
'
Paper 0 : Curs Off : Hide : Cls 0 : Print "Testing....Press a key" : Wait Key : Edit
'
'
Rem You can use REM or a ' whatever suits you, it tells Amos not to
Rem execute anything following on that line